home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsback.h < prev    next >
C/C++ Source or Header  |  2004-07-18  |  4KB  |  90 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31. /* ------------------------------------------------------------ */
  32. /* File: httrack.c subroutines:                                 */
  33. /*       backing system (multiple socket download)              */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37.  
  38. #ifndef HTSBACK_DEFH
  39. #define HTSBACK_DEFH 
  40.  
  41. #include "htsglobal.h"
  42. #include "htsbasenet.h"
  43. #include "htscore.h"
  44.  
  45. /* Library internal definictions */
  46. #ifdef HTS_INTERNAL_BYTECODE
  47.  
  48. // backing
  49. #define BACK_ADD_TEST "(dummy)"
  50. #define BACK_ADD_TEST2 "(dummy2)"
  51. int  back_index(lien_back* back,int back_max,char* adr,char* fil,char* sav);
  52. int back_available(lien_back* back,int back_max);
  53. LLint back_incache(lien_back* back,int back_max);
  54. HTS_INLINE int  back_exist(lien_back* back,int back_max,char* adr,char* fil,char* sav);
  55. int  back_nsoc(lien_back* back,int back_max);
  56. int  back_nsoc_overall(lien_back* back,int back_max);
  57. int  back_add(lien_back* back,int back_max,httrackp* opt,cache_back* cache,char* adr,char* fil,char* save,char* referer_adr,char* referer_fil,int test,int* pass2_ptr);
  58. int  back_stack_available(lien_back* back,int back_max);
  59. int  back_search(httrackp* opt, cache_back* cache, lien_back* back, int back_max);
  60. void back_clean(httrackp* opt,cache_back* cache,lien_back* back,int back_max);
  61. void back_wait(lien_back* back,int back_max,httrackp* opt,cache_back* cache,TStamp stat_timestart);
  62. int  back_letlive(httrackp* opt, cache_back* cache, lien_back* back, int p);
  63. int  back_searchlive(httrackp* opt, lien_back* back, int back_max, char* search_addr);
  64. void back_connxfr(htsblk* src, htsblk* dst);
  65. int  back_delete(httrackp* opt,cache_back* cache,lien_back* back,int p);
  66. int  back_maydelete(httrackp* opt, cache_back* cache, lien_back* back, int p);
  67. void back_maydeletehttp(httrackp* opt, cache_back* cache, lien_back* back, int back_max, int p);
  68. int  back_trylive(httrackp* opt,cache_back* cache,lien_back* back, int back_max, int p);
  69. int  back_finalize(httrackp* opt,cache_back* cache,lien_back* back,int p);
  70. void back_info(lien_back* back,int i,int j,FILE* fp);
  71. void back_infostr(lien_back* back,int i,int j,char* s);
  72. LLint  back_transfered(LLint add,lien_back* back,int back_max);
  73. // hostback
  74. #if HTS_XGETHOST
  75. void back_solve(lien_back* back);
  76. int host_wait(lien_back* back);
  77. #endif
  78. int back_checksize(httrackp* opt,lien_back* eback,int check_only_totalsize);
  79. int back_checkmirror(httrackp* opt);
  80.  
  81. #if HTS_XGETHOST
  82. #if USE_BEGINTHREAD
  83. PTHREAD_TYPE PTHREAD_TYPE_FNC Hostlookup(void* iadr_p);
  84. #endif
  85. #endif
  86.  
  87. #endif
  88.  
  89. #endif
  90.